home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Linux Cubed Series 7: Sunsite
/
Linux Cubed Series 7 - Sunsite Vol 1.iso
/
system
/
emulator
/
bsvc-1.000
/
bsvc-1
/
bsvc-1.0.4
/
src
/
Makefile.Linux
< prev
next >
Wrap
Makefile
|
1995-07-26
|
951b
|
45 lines
###############################################################################
## Makefile.linux - System Dependent Makefile for Linux
##
## Bradford W. Mott
## July 3,1994
###############################################################################
## C++ compiler to use
CC=gcc
## C++ compiler flags
CPPFLAGS=-O -ansi
## System Includes
SYS_INCLUDES =
## System Libraries
SYS_LIBS = -lg++
## Archiver
AR=ar
## Archiver create flags
AR_CREATE_FLAGS=r
## Library index generator
RANLIB=ranlib
## Installion programs
INSTALL=install
STRIP=strip
MKDIR=mkdir -p
## Make parameters that need to be passed
DEPENDENT_PARMS = CC='$(CC)' CFLAGS='$(CFLAGS)' CPPFLAGS='$(CPPFLAGS)' \
AR='$(AR)' AR_CREATE_FLAGS='$(AR_CREATE_FLAGS)' \
RANLIB='$(RANLIB)' \
SYS_INCLUDES='$(SYS_INCLUDES)' SYS_LIBS='$(SYS_LIBS)' \
INSTALL='$(INSTALL)' STRIP='$(STRIP)' MKDIR='$(MKDIR)'
## Include the system independent makefile
include Makefile.common